home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 May / PCPlus May 1998=disk A.iso / full / CBUILDER / SAMS / SAMPLES / CHAP02 / WHILETST.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-12  |  396 b   |  19 lines

  1. #include <iostream.h>
  2. #include <conio.h>
  3. #pragma hdrstop
  4.  
  5. int main(int argv, char** argc)
  6. {
  7.   cout << endl << "Starting program..." << endl << endl;
  8.   int i = 6;
  9.   while (i-- > 0) {
  10.     cout << endl << "Today I have " << i;
  11.     cout << " problems to worry about.";
  12.   }
  13.   cout << "\b!\nYipee!";
  14.   cout << endl << endl << "Press any key to continue...";
  15.   getch();
  16.   return 0;
  17. }
  18.  
  19.